style.module.scss 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. .timeline {
  2. }
  3. /*----- TIMELINE ITEM -----*/
  4. .timelineItem {
  5. padding-left: 30px;
  6. position: relative;
  7. }
  8. /*----- TIMELINE INFO -----*/
  9. .timelineInfo {
  10. font-size: 12px;
  11. }
  12. /*----- TIMELINE MARKER -----*/
  13. .timelineMarker {
  14. position: absolute;
  15. top: 0;
  16. bottom: 0;
  17. left: 0;
  18. width: 15px;
  19. &:before {
  20. border-radius: 100%;
  21. content: "";
  22. display: block;
  23. height: 15px;
  24. position: absolute;
  25. top: 4px;
  26. left: 0;
  27. width: 15px;
  28. z-index: 2;
  29. }
  30. &:after {
  31. content: "";
  32. width: 1px;
  33. background: #ccd5db;
  34. position: absolute;
  35. z-index: 1;
  36. top: 10px;
  37. bottom: -10px;
  38. left: 7px;
  39. }
  40. .timelineItem:last-child &:after {
  41. content: none;
  42. }
  43. }
  44. /*----- TIMELINE CONTENT -----*/
  45. .timelineContent {
  46. padding-bottom: 20px;
  47. p:last-child {
  48. margin-bottom: 0;
  49. }
  50. }
  51. .weekbtn {
  52. border-radius: 50%;
  53. @include customButton(linear-gradient(to bottom, #b856ef, #6948d5), #f5a3ff, 0.2rem);
  54. span {
  55. position: relative;
  56. z-index: 2;
  57. }
  58. }
  59. .tableBox {
  60. //
  61. border: 1px solid #46e3ff;
  62. }
  63. .td {
  64. color: #fff;
  65. }
  66. .even {
  67. position: relative;
  68. border: 1px solid #46e3ff;
  69. background: rgba(172, 89, 235, 0.25);
  70. box-shadow: 0 0 10px #35a1b4 inset;
  71. //border-radius: 0.1rem;
  72. &:after {
  73. //content: "";
  74. //position: absolute;
  75. //left: 0;
  76. //top: 0;
  77. //right: 0;
  78. //bottom: 0;
  79. //border: 1px solid #46e3ff;
  80. //box-shadow: 0 0 10px #35a1b4 inset;
  81. //border-radius: 0.1rem;
  82. //background: rgba(172, 89, 235, 0.25);
  83. }
  84. // border: 1px solid #46e3ff;
  85. // td:nth-child(1) {
  86. // border: 1px solid #46e3ff;
  87. // border-radius: 0.1rem 0 0 0.1rem;
  88. // }
  89. }